home *** CD-ROM | disk | FTP | other *** search
/ IRIX Base Documentation 1998 November / IRIX 6.5.2 Base Documentation November 1998.img / usr / share / catman / u_man / cat1 / sed.z / sed
Text File  |  1998-10-20  |  12KB  |  265 lines

  1.  
  2.  
  3.  
  4. SSSSEEEEDDDD((((1111))))                                                                  SSSSEEEEDDDD((((1111))))
  5.  
  6.  
  7.  
  8. NNNNAAAAMMMMEEEE
  9.      sed - stream editor
  10.  
  11. SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
  12.      sssseeeedddd [----nnnn] script [file ...]
  13.  
  14.      sssseeeedddd [----nnnn] [----eeee script]...  [----ffff script_file]... [file ...]
  15.  
  16. DDDDEEEESSSSCCCCRRRRIIIIPPPPTTTTIIIIOOOONNNN
  17.      _s_e_d copies the named _f_i_l_e_s (standard input default) to the standard
  18.      output, edited according to a script of commands.  The ----eeee option causes
  19.      the script to be take from the _s_c_r_i_p_t option argument.  The ----ffff option
  20.      causes the script to be taken from file _s_c_r_i_p_t__f_i_l_e.  The scripts from
  21.      the ----eeee and ----ffff options accumulate.  If there is just one ----eeee option and no
  22.      ----ffff options, the flag ----eeee may be omitted.  The ----nnnn option suppresses the
  23.      default output.
  24.  
  25.      _s_e_d has two operating modes.  By default, _s_e_d operates compatibly with
  26.      certain earlier versions of System V _s_e_d. If the environment variable
  27.      ____XXXXPPPPGGGG is defined, and has a numeric value greater than 0, _s_e_d operates in
  28.      conformance with the X/Open XPG4 specifications.  In the backward
  29.      compatibility mode, when ----nnnn is not specified and the """"pppp"""" option to the
  30.      """"ssss"""" command is used, the pattern space will be output only once, no
  31.      matter how many substitutions are made.  Also, the format of the output
  32.      of the """"llll"""" command will differ in some details from the XPG4 format.
  33.  
  34.      Note that the null string is a part of the solutions when _XPG numerical
  35.      value > 0. i.e., sed -e 's/b*/a/' will insert "a" at the beginning of any
  36.      input as "b*" would match an empty string. To substitute the first non-
  37.      empty string consisting of one or more letter b's with "a", then it
  38.      should be: sed -e 's/bb*/a/'
  39.  
  40.      A script consists of editing commands, one per line, of the following
  41.      form:
  42.  
  43.           [ address [ , address ] ] function [ arguments ]
  44.  
  45.      Zero or more blank characters are accepted before the first address and
  46.      before command.
  47.  
  48.      Each input _f_i_l_e is a text file to be edited.  The _f_i_l_e_s are read in the
  49.      order given.
  50.  
  51.      In normal operation, _s_e_d cyclically copies a line of input into a _p_a_t_t_e_r_n
  52.      _s_p_a_c_e (unless there is something left after a DDDD command), applies in
  53.      sequence all commands whose _a_d_d_r_e_s_s_e_s select that pattern space, and at
  54.      the end of the script copies the pattern space to the standard output
  55.      (except when ----nnnn is specified) and deletes the pattern space.  Whenever
  56.      the pattern space is written to standard output or a named file, sed will
  57.      immediately follow it with a newline character.
  58.  
  59.  
  60.  
  61.  
  62.  
  63.                                                                         PPPPaaaaggggeeee 1111
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. SSSSEEEEDDDD((((1111))))                                                                  SSSSEEEEDDDD((((1111))))
  71.  
  72.  
  73.  
  74.      Some of the commands use a _h_o_l_d _s_p_a_c_e to save all or part of the _p_a_t_t_e_r_n
  75.      _s_p_a_c_e for subsequent retrieval.  The _h_o_l_d and _p_a_t_t_e_r_n _s_p_a_c_e_s each hold at
  76.      least 8192 bytes.
  77.  
  78.      An _a_d_d_r_e_s_s is either a decimal number that counts input lines
  79.      cumulatively across files, a $$$$ that addresses the last line of input, or
  80.      a context address, i.e., a ////_r_e_g_u_l_a_r _e_x_p_r_e_s_s_i_o_n//// in the style of _e_d(1)
  81.      modified thus:
  82.  
  83.           In a context address, the construction \\\\?_r_e_g_u_l_a_r _e_x_p_r_e_s_s_i_o_n?, where
  84.                ?  is any character, is identical to ////_r_e_g_u_l_a_r _e_x_p_r_e_s_s_i_o_n////.
  85.                Note that in the context address \\\\xxxxaaaabbbbcccc\\\\xxxxddddeeeeffffxxxx, the second xxxx
  86.                stands for itself, so that the regular expression is aaaabbbbccccxxxxddddeeeeffff.
  87.           The escape sequence \\\\nnnn matches a new-line _e_m_b_e_d_d_e_d in the pattern
  88.                space.
  89.           A period .... matches any character except the _t_e_r_m_i_n_a_l new-line of the
  90.                pattern space.
  91.           A command line with no addresses selects every pattern space.
  92.           A command line with one address selects each pattern space that
  93.                matches the address.
  94.           A command line with two addresses selects the inclusive range from
  95.                the first pattern space that matches the first address through
  96.                the next pattern space that matches the second.  (If the second
  97.                address is a number less than or equal to the line number first
  98.                selected, only one line is selected.)  Thereafter the process
  99.                is repeated, looking again for the first address.
  100.           \\\\<<<< and \\\\>>>> are not currently supported.
  101.  
  102.      Editing commands can be applied only to non-selected pattern spaces by
  103.      use of the negation function !!!! (below).
  104.  
  105.      In the following list of functions the maximum number of permissible
  106.      addresses for each function is indicated in parentheses.
  107.  
  108.      The _t_e_x_t argument consists of one or more lines, all but the last of
  109.      which end with \\\\ to hide the new-line.  Backslashes in text are treated
  110.      like backslashes in the replacement string of an ssss command, and may be
  111.      used to protect initial blanks and tabs against the stripping that is
  112.      done on every script line.  The _r_f_i_l_e or _w_f_i_l_e argument must terminate
  113.      the command line and must be preceded by exactly one blank.  Each _w_f_i_l_e
  114.      is created before processing begins.  There can be at most 10 distinct
  115.      _w_f_i_l_e arguments.
  116.  
  117.      (1)aaaa\\\\
  118.      _t_e_x_t      Append.  Place _t_e_x_t on the output before reading the next input
  119.                line.
  120.      (2)bbbb _l_a_b_e_l
  121.                Branch to the :::: command bearing the _l_a_b_e_l.  If _l_a_b_e_l is empty,
  122.                branch to the end of the script.
  123.      (2)cccc\\\\
  124.  
  125.  
  126.  
  127.  
  128.  
  129.                                                                         PPPPaaaaggggeeee 2222
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136. SSSSEEEEDDDD((((1111))))                                                                  SSSSEEEEDDDD((((1111))))
  137.  
  138.  
  139.  
  140.      _t_e_x_t      Change.  Delete the pattern space.  With 0 or 1 address or at
  141.                the end of a 2-address range, place _t_e_x_t on the output.  Start
  142.                the next cycle.
  143.      (2)dddd      Delete the pattern space.  Start the next cycle.
  144.      (2)DDDD      Delete the initial segment of the pattern space through the
  145.                first new-line.  Start the next cycle.
  146.      (2)gggg      Replace the contents of the pattern space by the contents of
  147.                the hold space.
  148.      (2)GGGG      Append the contents of the hold space to the pattern space.
  149.      (2)hhhh      Replace the contents of the hold space by the contents of the
  150.                pattern space.
  151.      (2)HHHH      Append the contents of the pattern space to the hold space.
  152.      (1)iiii\\\\
  153.      _t_e_x_t      Insert.  Place _t_e_x_t on the standard output.
  154.      (2)llll      List the pattern space on the standard output in an unambiguous
  155.                form.  Non-printable characters are displayed in octal notation
  156.                and long lines are folded.
  157.      (2)nnnn      Copy the pattern space to the standard output.  Replace the
  158.                pattern space with the next line of input.
  159.      (2)NNNN      Append the next line of input to the pattern space with an
  160.                embedded new-line.  (The current line number changes.)
  161.      (2)pppp      Print.  Copy the pattern space to the standard output.
  162.      (2)PPPP      Copy the initial segment of the pattern space through the first
  163.                new-line to the standard output.
  164.      (1)qqqq      Quit.  Branch to the end of the script.  Do not start a new
  165.                cycle.
  166.      (2)rrrr _r_f_i_l_e
  167.                Read the contents of _r_f_i_l_e.  Place them on the output before
  168.                reading the next input line.
  169.      (2)ssss/_r_e_g_u_l_a_r _e_x_p_r_e_s_s_i_o_n/_r_e_p_l_a_c_e_m_e_n_t/_f_l_a_g_s
  170.                Substitute the _r_e_p_l_a_c_e_m_e_n_t string for instances of the _r_e_g_u_l_a_r
  171.                _e_x_p_r_e_s_s_i_o_n in the pattern space.  Any character may be used
  172.                instead of ////.  For a fuller description see _e_d(1).  _F_l_a_g_s is
  173.                zero or more of:
  174.                nnnn         n= 1 - 512.  Substitute for just the n th occurrence
  175.                          of the _r_e_g_u_l_a_r _e_x_p_r_e_s_s_i_o_n.
  176.                gggg         Global.  Substitute for all nonoverlapping instances
  177.                          of the _r_e_g_u_l_a_r _e_x_p_r_e_s_s_i_o_n rather than just the first
  178.                          one.
  179.                pppp         Print the pattern space if a replacement was made.
  180.                wwww _w_f_i_l_e   Write.  Append the pattern space to _w_f_i_l_e if a
  181.                          replacement was made.
  182.      (2)tttt _l_a_b_e_l
  183.                Test.  Branch to the :::: command bearing the _l_a_b_e_l if any
  184.                substitutions have been made since the most recent reading of
  185.                an input line or execution of a tttt.  If _l_a_b_e_l is empty, branch
  186.                to the end of the script.
  187.      (2)wwww _w_f_i_l_e
  188.                Write.  Append the pattern space to _w_f_i_l_e.
  189.      (2)xxxx      Exchange the contents of the pattern and hold spaces.
  190.  
  191.  
  192.  
  193.  
  194.  
  195.                                                                         PPPPaaaaggggeeee 3333
  196.  
  197.  
  198.  
  199.  
  200.  
  201.  
  202. SSSSEEEEDDDD((((1111))))                                                                  SSSSEEEEDDDD((((1111))))
  203.  
  204.  
  205.  
  206.      (2)yyyy/_s_t_r_i_n_g_1/_s_t_r_i_n_g_2/
  207.                Transform.  Replace all occurrences of characters in _s_t_r_i_n_g_1
  208.                with the corresponding character in _s_t_r_i_n_g_2.  The lengths of
  209.                _s_t_r_i_n_g_1 and _s_t_r_i_n_g_2 must be equal.
  210.      (2)!!!! _f_u_n_c_t_i_o_n
  211.                Don't.  Apply the _f_u_n_c_t_i_o_n (or group, if _f_u_n_c_t_i_o_n is {{{{) only to
  212.                lines _n_o_t selected by the address(es).
  213.      (0):::: _l_a_b_e_l
  214.                This command does nothing; it bears a _l_a_b_e_l for bbbb and tttt
  215.                commands to branch to.
  216.      (1)====      Place the current line number on the standard output as a line.
  217.      (2){{{{      Execute the following commands through a matching }}}} only when
  218.                the pattern space is selected.
  219.      (0)       An empty command is ignored.
  220.      (0)####      If a #### appears as the first character on a line of a script
  221.                file, then that entire line is treated as a comment, with one
  222.                exception.  If the character after the #### is an 'n', then the
  223.                default output will be suppressed.  The rest of the line after
  224.                ####n is also ignored.  A script file must contain at least one
  225.                non-comment line.
  226.  
  227. SSSSEEEEEEEE AAAALLLLSSSSOOOO
  228.      awk(1), ed(1), grep(1), regcomp(5).
  229.  
  230.  
  231.  
  232.  
  233.  
  234.  
  235.  
  236.  
  237.  
  238.  
  239.  
  240.  
  241.  
  242.  
  243.  
  244.  
  245.  
  246.  
  247.  
  248.  
  249.  
  250.  
  251.  
  252.  
  253.  
  254.  
  255.  
  256.  
  257.  
  258.  
  259.  
  260.  
  261.                                                                         PPPPaaaaggggeeee 4444
  262.  
  263.  
  264.  
  265.